home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 334_03 / test1 < prev    next >
Text File  |  1991-02-04  |  797b  |  22 lines

  1. set terminal latex
  2. set output "plot.tex" # a short comment here
  3. set size 4,2.75; help foo; set term latex
  4. set title "Effect of Prefetching Lead on Total execution time"
  5. !echo this is a shell command
  6. set ylabel "Total\\Execution\\time\\(seconds)" 1
  7. set xlabel "Minimum prefetching lead in blocks"
  8. # full-line comment goes here
  9. set style lp1 "\scriptsize 1" 7 "\circle*{1}"
  10. set style lp2 "\scriptsize 2" 7 "\circle*{1}"
  11. set style lp3 "\scriptsize 3" 7 "\circle*{1}"
  12. set style lp4 "\scriptsize 4" 7 "\circle*{1}"
  13. set noclip
  14. plot [0:90] [0:10] "points.gps" w lp1, "points.gw" w lp2, \
  15.   "points.lps" w lp3, "points.lw" w lp4
  16. label 10,7 "gfp"
  17. label 80,5.5 "gw"
  18. label 70,3.4 "lfp"
  19. label 40,1.8 "lw"
  20. plot [0:pi] sin(x) w points
  21. key 1,.5 "sin(x)" w points, "" w lines, "dummy" w lp1
  22.